From: Evan Benn Date: Fri, 8 Dec 2023 02:14:29 +0000 (+1100) Subject: luci-base: Replace mode: Master with Access Point X-Git-Url: http://git.openwrt.org/%22https:/collectd.org//%22/%22https:/collectd.org/%22?a=commitdiff_plain;h=23931c3778337927945c7c9648ad9d5d9805ce98;p=project%2Fluci.git luci-base: Replace mode: Master with Access Point Access Point is the string used on the network wireless setup dialogue. Use Access Point to report the mode on the network wireless and status screens. Signed-off-by: Evan Benn --- diff --git a/modules/luci-base/htdocs/luci-static/resources/network.js b/modules/luci-base/htdocs/luci-static/resources/network.js index 10695cf967..887c3d57f0 100644 --- a/modules/luci-base/htdocs/luci-static/resources/network.js +++ b/modules/luci-base/htdocs/luci-static/resources/network.js @@ -3861,7 +3861,7 @@ WifiNetwork = baseclass.extend(/** @lends LuCI.network.WifiNetwork.prototype */ var mode = this.getActiveMode(); switch (mode) { - case 'Master': return _('Master'); + case 'Master': return _('Access Point'); case 'Ad-Hoc': return _('Ad-Hoc'); case 'Client': return _('Client'); case 'Monitor': return _('Monitor');